
' Theremino Automation demo program

' Demonstrating SIMPLE COMPARATIONS

v1 = Slot(1)
v2 = Slot(2)

If v1 > v2
	Print "V1 is greater than V2"
EndIf

If v1 < v2
	Print "V1 is less than V2"
EndIf

If v1 = v2
	Print "V1 is equal than V2"
EndIf

'EXEC Slot 1 = 10 : Slot 2 = 100
